.skeleton {
background-color: #e2e5e7;
border-radius: 5px;
background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
background-size: 40px 100%;
background-repeat: no-repeat;
background-position: left -40px top 0;
animation: shine 1s ease infinite;
}
@-webkit-keyframes shine {
to {
background-position: right -40px top 0;
}
}
@keyframes shine {
to {
background-position: right -40px top 0;
}
}
.postCard{
padding: 20px 15px;
border: 1px solid #f3f3f3;
border-radius: 5px;
margin-top: 20px;
}
.postCard__title{
font-size: 20px;
margin-bottom: 6px;
}
.postCard__title.skeleton{
height: 30px;
}
.postCard__content.skeleton{